/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-gold: #D4AF37;
    --deep-gold: #B8860B;
    --warm-cream: #F5F5DC;
    --deep-green: #2D5016;
    --forest-green: #4A6741;
    --light-green: #8FBC8F;
    --warm-white: #FFF8DC;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Integration Styling */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Ensure all logo images have transparent backgrounds */
img[alt*="Logo"] {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Additional transparency for logo images */
.logo-image,
.footer-logo-image,
.about-logo-image,
.contact-logo-image {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    mix-blend-mode: multiply;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-link:hover .logo-text {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    mix-blend-mode: multiply;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-gold), #d4af37, #b8860b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* Footer Logo Styling */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 110px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.footer-logo h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    margin-left: -20px;
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

/* About Section Logo */
.about-logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 0.25rem;
    max-width: 1000px;
    margin-left: 0;
    margin-right: auto;
    margin-top: -2rem;
}

.about-logo-section .section-title {
    text-align: left;
    margin: 0;
    padding: 0;
    line-height: 1;
    margin-left: -80px;
    position: relative;
    z-index: 1;
}

.about-logo-image {
    height: 225px;
    width: auto;
    object-fit: contain;
    background: transparent;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    display: block;
}

/* Contact Section Logo */
.contact-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

/* WhatsApp Link Styling */
.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.whatsapp-link:hover {
    color: #128C7E;
    transform: translateY(-1px);
    text-decoration: underline;
}

    .nav-logo {
        margin-left: -20px;
    }

.nav-logo h2 {
    color: var(--deep-green);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--deep-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Prevent layout shift during loading */
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -3;
    /* Prevent layout shift during image loading */
    min-height: 100vh;
    background-color: #f8f9fa;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-right: 3px solid transparent;
}

.hero-image:last-child {
    border-right: none;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.6) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%
    );
    z-index: 2;
    transition: all 0.4s ease;
}

.hero-image:last-child::after {
    display: none;
}

.hero-image:hover {
    z-index: 1;
    transform: scale(1.02);
}

.hero-image:hover::after {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(212, 175, 55, 0.6) 20%,
        rgba(212, 175, 55, 1) 50%,
        rgba(212, 175, 55, 0.6) 80%,
        transparent 100%
    );
    width: 4px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) saturate(1.1);
    /* Prevent green placeholder flash and layout shift */
    background-color: #f8f9fa;
    background-image: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                      linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                      linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    /* Smooth loading transition */
    opacity: 0;
    animation: fadeInImage 0.6s ease-in-out forwards;
}

.hero-image img.loaded {
    opacity: 1;
    background: none;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.3);
}

.hero-image-1 {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--forest-green) 100%);
}

.hero-image-2 {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--light-green) 100%);
}

.hero-image-3 {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-gold) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    backdrop-filter: blur(1px);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    position: relative;
    animation: heroContentFadeIn 1.5s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: 700px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e9ecef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    display: flex;
    justify-content: center;
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: var(--deep-gold);
    border-color: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--deep-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--warm-white);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 1rem;
}

.products-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--deep-gold) 100%);
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-showcase-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.product-showcase-card:nth-child(even) .product-showcase-image {
    order: 2;
}

.product-showcase-card:nth-child(even) .product-showcase-content {
    order: 1;
}

.product-showcase-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-showcase-card:hover .product-showcase-image img {
    transform: scale(1.05);
}

.product-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--deep-gold) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.product-showcase-content {
    padding: 1rem;
}

.product-showcase-title {
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-showcase-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.product-showcase-description:last-child {
    margin-bottom: 0;
}

/* Additional creative effects for product showcase */
.product-showcase-card {
    position: relative;
}

.product-showcase-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.product-showcase-card:hover::after {
    width: 200px;
    height: 200px;
}

.product-showcase-content {
    position: relative;
    z-index: 1;
}

.product-showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-showcase-card:hover .product-showcase-image::before {
    opacity: 1;
}

/* Products Section */
.products {
    padding: 5px 0;
    background: var(--warm-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-forms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.form-badge {
    background: linear-gradient(135deg, var(--primary-gold), #d4af37);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.form-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

.expand-btn {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: var(--deep-gold);
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--deep-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Product Details */
.product-details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-details.active {
    opacity: 1;
    visibility: visible;
}

.detail-content {
    background: white;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    position: relative;
}

.detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.detail-text h3 {
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.detail-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.product-specs {
    background: var(--warm-cream);
    padding: 1.5rem;
    border-radius: 10px;
}

.spec {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.spec strong {
    color: var(--deep-green);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--deep-green);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: var(--forest-green);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--warm-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.contact-icon:hover::before {
    left: 100%;
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Specific icon styling */
.email-icon {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.phone-icon {
    background: linear-gradient(135deg, #ea4335, #fbbc05);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: all 0.3s ease;
}

.contact-icon:hover svg {
    transform: scale(1.1);
}

.whatsapp-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 4px;
    border-left: 3px solid #25d366;
}

.contact-item h4 {
    color: var(--deep-green);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}


.form-group label {
    color: var(--deep-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required {
    color: #e74c3c;
    font-weight: bold;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--deep-green);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Parallax Effect for Hero Images */
.hero-image {
    will-change: transform;
}

.hero-image-1 {
    transform: translateY(0);
}

.hero-image-2 {
    transform: translateY(0);
}

.hero-image-3 {
    transform: translateY(0);
}

/* Mobile Touch Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

.btn, .nav-link, .expand-btn, .close-btn, .get-quote-btn {
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Extra Small Mobile Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Ensure About section is centered on small mobile */
    .about-logo-section {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-logo-section .section-title {
        margin-left: 0;
        margin-right: 0;
    }
    
    .popup-content {
        width: 98%;
        max-width: 98%;
        margin: 1vh auto;
    }
    
    .varieties-table {
        min-width: 650px;
        font-size: 0.8rem;
    }
    
    .varieties-table th,
    .varieties-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .variety-image {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Ensure About section is centered on very small mobile */
    .about-logo-section {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-logo-section .section-title {
        margin-left: 0;
        margin-right: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .varieties-table {
        min-width: 600px;
        font-size: 0.75rem;
    }
    
    .variety-image {
        width: 45px !important;
        height: 45px !important;
    }
}

/* Desktop: Hide mobile cards, show tables */
.mobile-variety-cards {
    display: none;
}

.varieties-table {
    display: table;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo {
        margin-left: -10px;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-logo-image {
        height: 90px;
    }
    
    .about-logo-image {
        height: 168px;
    }
    
    .about-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    
    .about-logo-section .section-title {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    
    .contact-logo-image {
        height: 55px;
    }
    
    /* Mobile About Section Centering */
    .about .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-intro {
        text-align: center;
        max-width: 100%;
    }
    
    
    /* Mobile table optimizations */
    .varieties-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .varieties-table {
        min-width: 100%;
        font-size: 0.75rem;
        border-collapse: collapse;
    }
    
    .varieties-table th,
    .varieties-table td {
        padding: 0.5rem 0.25rem;
        white-space: normal;
        vertical-align: top;
        text-align: left;
        border: 1px solid #e0e0e0;
    }
    
    .varieties-table th {
        font-size: 0.7rem;
        font-weight: 700;
        background-color: var(--primary-gold);
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .variety-image {
        width: 40px !important;
        height: 40px !important;
        object-fit: cover;
        border-radius: 6px;
    }
    
    /* Mobile Card Layout for Variety Tables */
    .varieties-table {
        display: none; /* Hide table on mobile */
    }
    
    .mobile-variety-cards {
        display: block; /* Show mobile cards */
    }
    
    .mobile-variety-card {
        background: white;
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #e0e0e0;
        z-index: 10005;
        position: relative;
    }
    
    .mobile-variety-header {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--primary-gold);
    }
    
    .mobile-variety-image {
        width: 180px;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        border: 3px solid var(--primary-gold);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .mobile-variety-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--deep-green);
        margin: 0;
        line-height: 1.2;
    }
    
    .mobile-variety-details {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .mobile-detail-item {
        display: flex;
        flex-direction: column;
        padding: 0.75rem;
        background: var(--warm-cream);
        border-radius: 8px;
        border-left: 4px solid var(--primary-gold);
    }
    
    .mobile-detail-label {
        font-size: 0.85rem;
        color: #666;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.25rem;
    }
    
    .mobile-detail-value {
        font-size: 1rem;
        color: var(--deep-green);
        font-weight: 500;
        line-height: 1.3;
    }
    
    .mobile-variety-description {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
        margin-top: 1rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 4px solid var(--forest-green);
    }
    
    /* Mobile card spacing and scrolling */
    .mobile-variety-cards {
        padding: 0.5rem 0;
    }
    
    .mobile-variety-card:last-child {
        margin-bottom: 0;
    }
    
    /* Mobile popup header improvements */
    .popup-header {
        padding: 1rem 1.5rem;
        background: var(--deep-green);
        color: white;
        border-radius: 10px 10px 0 0;
    }
    
    .popup-header h2 {
        font-size: 1.2rem;
        margin: 0;
        font-weight: 600;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        min-height: 44px;
        min-width: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: var(--deep-green);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 3rem 0;
        z-index: 1000;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--deep-green);
        text-decoration: none;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link:hover {
        background-color: var(--primary-gold);
        color: white;
        transform: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-image-container {
        flex-direction: row;
    }

    .hero-image {
        height: 100%;
    }

    .product-showcase-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .product-showcase-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .product-showcase-card:nth-child(even) .product-showcase-image {
        order: 1;
    }

    .product-showcase-card:nth-child(even) .product-showcase-content {
        order: 2;
    }

    .product-showcase-image {
        height: 300px;
    }

    .product-showcase-title {
        font-size: 1.5rem;
    }

    .about-intro {
        font-size: 1.1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Mobile popup fixes */
    .product-popup {
        padding: 0.5rem;
        z-index: 10000;
    }
    
    .popup-content {
        width: 98%;
        max-width: 98%;
        max-height: 95vh;
        overflow-y: auto;
        margin: 1vh auto;
        padding: 0;
        border-radius: 10px;
        z-index: 10001;
        position: relative;
    }
    
    .popup-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
        margin: 0;
    }
    
    .close-btn {
        min-width: 44px;
        min-height: 44px;
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .get-quote-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .detail-title {
        font-size: 2rem;
    }

    .variety-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .variety-image img {
        height: 300px;
    }

    .variety-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .variety-tab {
        text-align: center;
    }

    .popup-content {
        width: 98%;
        margin: 2vh auto;
        max-height: 95vh;
    }

    .popup-header {
        padding: 1rem 1.5rem;
    }

    .popup-header h2 {
        font-size: 1.4rem;
    }

    .popup-body {
        padding: 1rem;
        max-height: 75vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 10002;
        position: relative;
        background: white;
        scroll-behavior: smooth;
    }

    .varieties-table-container {
        overflow-x: scroll;
    }
    
    /* Hide table on mobile, show cards */
    .varieties-table {
        display: none;
    }
    
    .mobile-variety-cards {
        display: block;
    }

    .varieties-table {
        min-width: 800px;
    }

    .varieties-table th,
    .varieties-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    .variety-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .hero-image-container {
        flex-direction: row;
    }

    .hero-image {
        height: 100%;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success/Error states for form */
.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

/* Product Popup Modals */
.product-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 15px;
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    margin: 5vh auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.product-popup.active .popup-content {
    transform: scale(1);
}

.popup-header {
    background: var(--deep-green);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    flex: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: 2rem;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.popup-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.product-image-large {
    text-align: center;
    margin-bottom: 2rem;
}

.product-image-large img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.varieties-table-container {
    overflow-x: auto;
    margin-top: 1rem;
    z-index: 10003;
    position: relative;
    background: white;
}

.varieties-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10004;
    position: relative;
}

.varieties-table thead {
    background: var(--primary-gold);
    color: white;
}

.varieties-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .varieties-table td {
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
        color: var(--text-light);
        font-size: 0.95rem;
    }

.varieties-table tbody tr:hover {
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.varieties-table tbody tr:last-child td {
    border-bottom: none;
}

.varieties-table strong {
    color: var(--deep-green);
    font-weight: 600;
}

.variety-image {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.variety-image:hover {
    transform: scale(1.1);
}

.quote-button-container {
    text-align: center;
    margin-bottom: 2rem;
}

.get-quote-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.get-quote-btn:hover {
    background: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.get-quote-btn:active {
    transform: translateY(0px) scale(0.98);
    transition: all 0.1s ease;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--warm-cream);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    color: var(--deep-green);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-gold);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.7);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    padding: 0 2rem 2rem 2rem;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--warm-cream);
    padding: 10px 0;
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.breadcrumb-nav ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: var(--primary-gold);
    font-weight: bold;
}

.breadcrumb-nav a {
    color: var(--deep-green);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: var(--primary-gold);
}

.breadcrumb-nav a:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
    border-radius: 3px;
}

/* Breadcrumb Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 8px 0;
    }
    
    .breadcrumb-nav ol {
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .breadcrumb-nav li {
        font-size: 12px;
    }
    
    .breadcrumb-nav li:not(:last-child)::after {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-nav ol {
        padding: 0 10px;
    }
    .breadcrumb-nav li {
        font-size: 11px;
    }
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 0.5rem;
    }
    
    .faq-icon {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 0.95rem;
    }
}
